home *** CD-ROM | disk | FTP | other *** search
/ How Many Bugs in a Box / How Many Bugs in a Box.cdr / bugs / act3 / 00233.ls < prev    next >
Encoding:
Text File  |  1995-03-28  |  266 b   |  14 lines

  1. on exitFrame
  2.   global startframe, timerate
  3.   set myframe to startframe + (the timer / timerate)
  4.   if myframe > the frame then
  5.     go(myframe)
  6.   else
  7.     if myframe > marker("skipstuff") then
  8.       go("skipstuff")
  9.     else
  10.       go(the frame)
  11.     end if
  12.   end if
  13. end
  14.